﻿/* Dropdown Button */
.dropbtn {
    border: none;
    background-color:transparent;
    padding-bottom: 10pt;
}

/* The container - needed to position the dropdown content */
.dropdown {
    position:fixed;
    right:0px;
	top: 15px; 
	height: 67px;
	opacity: 0.8;
	z-index:100;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    background-color: white;
    z-index: 1;
	min-width:100px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color:#FF0000;
    padding: 0px 10px;
    text-decoration: none;
    font-size:12pt;
    line-height:12pt;
   	text-shadow: 1px -1px 1px gray;
    display: table;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color:silver;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
/*   background-color:silver;*/
} 

/* thin menu seprator */
.menusep {
	font-size:10pt;
}

/* fixed page background */
.fixedback {
	background-attachment: fixed;
}



  
   
    
